.about {
  display: flex;
  flex-direction: column;
  padding: 2rem 5rem 10rem;
  margin: 10rem 0 0;
  background-image: url("about-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 90vh;
  justify-content: center;
}
.about-header {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.about-heading {
  margin: 2rem auto;
  font-size: 3.5rem;
  color: #19772b;
}
.about-text {
  font-size: 1.8rem;
  color: rgb(216, 216, 216);
  width: 60%;
  font-weight: 100;
  margin: 0 auto;
}

.join {
  display: flex;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: center;
  color: rgb(216, 216, 216);
}
.join-img {
  border-radius: 10px;
  color: rgb(216, 216, 216);

  width: 40%;
  object-fit: contain;
}
.join div {
  width: 40%;
}
.join-heading {
  font-size: 3rem;

  color: #19772b;
  font-weight: 800;
}
.join-paragraph {
  font-size: 1.7rem;
  font-weight: 100;
  width: 90%;
}
@media (max-width: 700px) {
  .join {
    flex-direction: column;
  }
  .join div {
    width: auto;
    text-align: center;
  }
  .join-img {
    border: none;
    padding: 0;
  }
  .order-1 {
    order: 2;
  }
  .order-2 {
    order: 1;
  }
  .join-paragraph {
    width: 100%;
  }
}
